The need for a logical way to organize and control revisions has existed for almost as long as writing has existed, but revision control became much more important, and complicated, when the era of computing began.
can be overwhelming
can be extremely powerful
ideal for managing the full suite of research outputs such as datasets, statistical code, figures, lab notes, and manuscripts.
…or get left behind
centralising information e.g. ROpenSci / rfishbase
project management
project tracking
traceability
params_tmpl.R.R in params/ folder..R script. Name it using your initials (use 3 to be safe)ß
$(function () { // on page load replace all src URLs
$('.animated-gif').each(function (i, e) {
disableGif(e)
});
}); Reveal.addEventListener(‘slidechanged’, initAnimatedGifs); Reveal.addEventListener(‘ready’, initAnimatedGifs);
function initAnimatedGifs(event) { $(‘.animated-gif’, event.currentSlide).each(function (i, e) { enableGif(e) });
if (event.previousSlide)
$('.animated-gif', event.previousSlide).each(function (i, e) {
disableGif(e)
});
}
function enableGif(e) { var src = $(e).attr(“src”) $(e).attr(‘src’, src.replace(‘-image.gif’, ‘.gif’));
} function disableGif(e) { var src = $(e).attr(“src”) $(e).attr(‘src’, src.replace(‘.gif’, ‘-image.gif’));
}